img {
    pointer-events: none; /* Отключаем события мыши для изображений */
}
.test-scroll-container {
    scroll-behavior: smooth; /* Плавная прокрутка */
}

body {
    padding: 25px;
}

.landing-page {
    background: rgba(245,245,245);
    max-width: 1024px;
    margin: auto;
    border-radius: 20px;
    font-size: 20px;
}

.mobile {
    display: none !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Название компании */
.header-company {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 25px;
    position: relative;
}
    .company-img
    {
        width: 120px;
        height: 120px;
        background: var(--lp-theme-icon);
        background-size: 100%;
    }
    .company-name {
        font-family: 'Rupster-Script';
        text-align: center;
        font-size: 30px;
    }
    /* .company-name > div:last-child {
        font-size: 10%;
    } */
    .rating {
        position: absolute;
        top: 100%;
        display: flex;
        gap: 15px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
        .rating-stars {
            display: flex;
            width: 90px;
        }
        .rating-stars img {
            width: 20px;
        }
        .rating-value {
            white-space: nowrap;
            font-size: 90%;
        }
        .rating-value a {
            /*background: #EF1C39;
            background: #D32F2F;*/
            color: var(--primary-color);
            color: black;
            font-weight: bold;
            padding: 2px 8px;
            text-transform: uppercase;
            transition: opacity .3s;
        }
        .rating-value a:hover {
            opacity: .8;
        }
        
        .rating-value a::before {
            content: '';
            display: inline-flex;
            width: 20px;
            height: 20px;
            background: url('../imgs/avito.png') no-repeat center;
            background-size: 200%;
            position: relative;
            top: 2px;
        }
        
/* QR Code WhatsApp */
.qr-code-wa {
    /* position: fixed;
    bottom: 0;
    left: 0; */
    width: 120px;
    height: 120px;
    background: var(--lp-qr-code-wa);
    background-size: contain;
    border-radius: 12px;
    z-index: 10;
}


/* Контактная информация в шапке */
.header-contacts {
    margin-right: 50px;
    margin-top: 34px;
    position: relative;
}
    .call-btn {
        height: 50px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        background: var(--primary-color);
        background: #D32F2F;
        border-radius: 30px;
        padding-left: 5px;
        position: relative;
        box-shadow: 0 3px 10px rgba(0,0,0,.2);
        
    }
    .call-btn > * {
        display: block;
    }
    .call-btn-img {
        width: 40px;
        height: 40px;
        background: var(--lp-bg) url(../imgs/phone-call.svg) no-repeat center;
        background-size: 50%;
        border-radius: 50%;
        animation: 1200ms ease 0s normal none 1 running shake;
        animation-iteration-count: infinite;
        -webkit-animation: 1200ms ease 0s normal none 1 running shake;
        -webkit-animation-iteration-count: infinite;
    }
    .call-btn-number {
        padding: 0 25px 0 15px;
        font-weight: bold;
        font-size: 150%;
        color: var(--btn-text-color);
    }
    .call-btn-number-hide {
        position: absolute;
        top: 50%;
        right: 15px;
        background: linear-gradient(to right, transparent, #D32F2F 85%);
        width: 100%;
        height: 40px;
        transform: translateY(-50%);
        transition: opacity .3s;
    }
    .call-btn:hover .call-btn-number-hide {
        opacity: 0;
    }
    .call-time {
        text-align: center;
        margin-top: 6px;
        font-size: 90%;
        color: rgba(0,0,0,.6);
    }
    .call-time strong {
        color: rgba(0,0,0,1);
    }
    
    
    #message-btn {
        display: none;
    }


/* Экран с главным предложением */
.offer {
    margin: 60px 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.offer-h1 {
    padding-left: 20px;
}
/*
.offer h1 {
    text-align: left;
    user-select: none;
    font-size: 50px;
    margin: 20px 0;
    width: 500px;
    line-height: 100%;
}
*/
.offer h1 {
    text-align: left;
    user-select: none;
    font-size: 80px;
    margin: 20px 0;
    line-height: 120%;
    text-align: center;
    padding: 0 40px;
    padding-top: 50px;
}
    
    .offer-service {
        font-size: 60px !important;
    }
    .offer-service p {
        font-size: inherit;
        line-height: 120%;
        text-transform: capitalize;
    }
    
    
    .offer-target {
        /*display: none;*/
        text-align: center;
        display: none;
    }
    
    .offer-target .target {
        background: var(--primary-color);
        padding: 3px 15px;
        color:  var(--btn-text-color);
        margin-bottom: 16px;
        font-weight: bold;
    }
    .offer-target.mobile {display: none;}
    
    .offer-target p {
        padding: 6px 0;
        font-weight: bold;
    }
    
    .offer-theme-img {
        width: 450px;
        height: 450px;
        background: var(--lp-theme-icon);
        background-size: contain;
    }
    .offer-theme-img.mobile {
        display: none;
    }

    /* Форма обратной связи */
    .offer-callback-form {
        display: flex;
        justify-content: center;
        gap: 30px;
        position: fixed;
        /* left: 50%; */
        right: 85px;
        top: 50px;
        z-index: 100;
        transform: scale(.5) translateX(-50%);
        transform: scale(.4);
        transform-origin: center;
        transition: all .5s;
        display: none;
    }
    .offer-callback-form:hover {
        
        transform: scale(1) translateX(-50%);
        transform: scale(1);
    }
    .offer-callbackform {
        width: 320px;
    }
    .offer-callbackform h2 {
        margin: 0;
        font-size: 24px;
    }
    .offer-form {
        background: rgba(253,253,253);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        margin-top: 7px;
        position: relative;
        box-shadow: 0 0 25px rgba(0,0,0,.3);
    }
        .offer-form h4 {
            font-size: 150%;
        }
        .offer-form p {
            font-size: 80%;
        }
        .offer-form p.offer-form-desc {
            margin: 10px 0;
        }
        .offer-form input#client-tel {
            width: 100%;
            text-align: center;
            background: rgba(245,245,245);
            border: none;
        }
        .offer-form input#client-tel::placeholder {
            font-size: 90%;
            opacity: .3;
            transition: opacity .3s;
        }
        .offer-form input#client-tel:focus::placeholder {
            opacity: 0;
        }
        .offer-form button#send-client-tel {
            width: 100%;
            border: none;
            background: var(--primary-color);
            color: var(--btn-text-color);
            transition: transform .3s, opacity .3s;
        }
        .offer-form button#send-client-tel:active {
            transform: scale(.9);
        }
        .offer-form button#send-client-tel:disabled {
            transform: scale(1);
            opacity: .3;
        }

        p.offer-form-note {
            margin-top: 8px;
            font-size: 60%;
        }

    /* Блок с ценой на диагностику */
    .offer-price.mobile {
        display: none;
    }
    .offer-price {
        text-align: center;
        margin-top: 36px;
        display: none;
        /* color: rgba(0,0,0,.9); */
    }
        .offer-price > div:first-child {
            font-size: 150%;
            font-weight: bold;
        }
        .offer-price > div:nth-child(2) {
            font-size: 120%;
            padding: 6px 0;
        }
        .offer-price > div:last-child {
            font-size: 80%;
            /* opacity: .5; */
        }
      
/* Что ремонтируем */  
.type-list {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.type-list-item {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
}
.type-list-item * {
    /* border: 1px solid; */
}
    .type-list-item-img {
        width: 150px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* background: rgba(253,253,253); */
        border-radius: 50%;/* 
        border-radius: 15px; */
    }
    .type-list-item-img img {
        width: 60%;
        height: auto;
        transition: transform .5s;
    }
    .type-list-item h3,
    .type-list-item > p {
        font-size: 90%;
        opacity: 0;
        transition: opacity .5s;
        font-weight: bold;
    }
.type-list-item:hover img {
    transform: scale(1.4);
}
.type-list-item:hover h3,
.type-list-item:hover p {
    opacity: 1;
}


/* Блок с марками */
.brand-list {
    /* background: rgba(248,248,248); */
    margin: auto;
}
    .brand-list-wrap {
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .brand-items {
        display: flex;
        user-select: none;
        gap: 16px;
        animation: scroll-left 30s linear infinite alternate;
    }
    .brand-items img {
        height: auto;
        width: 90%;
        opacity: .6;
        transition: all .5s;
    }
    .brand-items > div {
        flex-shrink: 0;
        height: 80px;
        width: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity .3s;
    }
    .brand-items > div:hover img{
        opacity: 1;
        transform: scale(1.2);
    }

/* Блок преимуществ */
h2 {
    text-align: center;
    font-size: 300%;
    margin: 120px 0;
}

.advantages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 24px;
    margin-bottom: 36px;
}
    .advantages-left {
        width: 33%;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
    }
    .advantages-center {
        width: 280px;
        height: 280px;
        background: var(--lp-theme-icon);
    }
    .advantages-right {
        width: 33%;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .advantages-left > div, 
    .advantages-right > div {
        height: 240px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        /*border: 1px solid rgba(0,0,0,.1);*/
    }
    .advantages-left > div:nth-child(1),
    .advantages-left > div:nth-child(3) {
        margin-right: -110px;
        width: 110%;
    }
    .advantages-left > div:nth-child(1) h3,
    .advantages-left > div:nth-child(3) h3 {
        align-self: flex-end;
        text-align: right;
    }
    
    .advantages-left > div:nth-child(1) p,
    .advantages-left > div:nth-child(3) p{
        text-align: right;
    }
    .advantages-right > div:nth-child(1),
    .advantages-right > div:nth-child(3) {
        margin-left: -110px;
        width: 110%;
    }
    
    .advantages-right > div:nth-child(1) h3, 
    .advantages-right > div:nth-child(3) h3 {
        align-self: flex-start;
        text-align: left;
        width: 90%;
    }
    .advantages-right > div:nth-child(1) p,
    .advantages-right > div:nth-child(3) p {
        text-align: left;
    }
    
    .advantages-left > div:nth-child(1),
    .advantages-right > div:nth-child(1) {
        justify-content: flex-start;
        height: 280px;
        margin-bottom: 24px;
    }
    .advantages-left > div:nth-child(2),
    .advantages-right > div:nth-child(2) {
        /*text-align: center !important;*/
    }
    .advantages-left > div:nth-child(2) {
        text-align: right;
    }
    .advantages-right > div:nth-child(2) {
        text-align: left;
    }
    .advantages-left > div:nth-child(3),
    .advantages-right > div:nth-child(3) {
        padding-top: 44px;
        height: 280px;
    }
    
    .advantages-item h3 {
       font-size: 120%;
       height: 60px;
       /*border: 1px solid rgba(0,0,0,.1);*/
    }
    .advantages-item h3 span {
        display: block;
    }
    .advantages-item p {
       font-size: 90%
    }

.advantages-company {
    text-align: center;
}
    .advantages-company > div.desktop {
        margin: auto;
        margin-top: 56px;
        width: 37%;
        font-size: 90%;
    }


/* Как мы работаем */
.steps-items {
    display: flex;
    justify-content: center;
    gap: 36px;
}
    .step {
        text-align: center;
        width: 25%;
    }
        .step > div:first-child {
            font-size: 500%;
            font-weight: 800;
        }
        .step > div:last-child {
            margin-top: 26px;
            font-size: 90%;
        }

.steps-final {
    text-align: center;
    margin-top: 60px;
}
    .steps-theme-img {
        width: 120px;
        height: 120px;
        background: var(--lp-theme-icon);
        margin: auto;
    }
    .steps-final > div:last-child {
        margin-top: 26px;
        font-weight: bold;
    }
    
/* Прайс лист */
.price-list {
    margin: auto;
    user-select: none;
    width: 80%;
}
    .price-list-items {
        overflow: scroll;
        border-radius: 10px;
    }
    
    .price-list-item {
        display: flex;
        justify-content: space-between;
        padding: 12px 25px;
        transition: font-size .5s;
    }
    .price-list-item:nth-child(even) {
        background: rgba(250,250,250);
    }
    .price-list-item h4 {
        color: rgba(50,50,50);
        opacity: .3;
        font-weight: normal;
        transition: opacity .5s;
    }
    .price-list-item:hover {
        /* font-size: 150%; */
    }
    .price-list-item:hover h4 {
        opacity: 1;
    }
    
    .price-list-desc {
        text-align: center;
        font-size: 70%;
        width: 70%;
        margin: 30px auto;
    }
    
    /* кнопка */
    .price-list-btn {
        width: 180px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        border-radius: 30px;
        padding-left: 5px;
        position: relative;
        box-shadow: 0 3px 10px rgba(0,0,0,.2);
        color: rgba(255,255,255);
        transition: all .5s;
        cursor: pointer;
        user-select: none;
        font-weight: 600;
        margin: auto;
    }
    
    .price-list-btn:active {
        transform: scale(.9);
    }
    
/* Примеры работ */
.work-examples {
    margin: auto;
    overflow-x: scroll;
}
    .work-examples-success {
        text-align: center;
        padding: 20px 24px;
        font-weight: bold;
    }
    .work-examples-list {
         width: fit-content;
         display: flex;
         gap: 16px;
    }
    
/* Отзывы */
.profi-ru {
    background: #EF1C39;
    background: #D32F2F;
    color: white;
    font-weight: bold;
    padding: 2px 12px;
    text-transform: uppercase;
}
.reviews {
    width: 80%;
    margin: auto;
    user-select: none;
    position: relative;
}
.reviews-info {
    text-align: center;
    padding: 0 6px 24px;
}
.hide-reviews {
    display: none;
}
.hide-reviews.show {
    display: block;
}
    .show-more-reviews {
        padding: 12px;
        background: #FDFDFD;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 16px;
    }
.reviews-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 26px;
}
.reviews-stats-value {
    font-size: 60px;
    font-weight: bold;
}
.rating-desc {
    margin-top: 4px;
    font-size: 90%;
    text-align: center;
}

    .review-item {
        background: rgba(253,253,253);
        border-radius: 16px;
        padding: 15px;
        margin-bottom: 16px;
    }
        .review-user-data {
            display: flex;
            gap: 16px;
        }
        .review-user-name {
            font-size: 80%;
            margin-left: 3px;
            margin-bottom: 3px;
        }
        .review-user-img {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #33313C;
            color: rgba(253,253,253);
            font-size: 130%;
            border-radius: 50%;
        }
        .review-user-rating {
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }
            .review-user-rating-stars {
                display: flex;
                position: relative;/* 
                border: 1px solid; */
                /* width: 90px; */
            }
            .review-user-rating-stars img {
                width: 20px;
            }
            .review-user-rating-stars.plus-five img:last-child {
                transform: rotate(-8deg);
                position: relative;
                top: -1.5px;
            }
            .review-user-rating-stars.plus-five::after {
                content: '';
                width: 8px;
                height: 8px;
                background: url(../imgs/plus_profi.svg) no-repeat center;
                background-size: 100%;
                display: block;
                position: absolute;
                left: 100%;
                bottom: 0;
                transform: rotate(45deg) translateY(-1px) translateX(-3px);
            }
            .review-user-rating-stars.plus-five::before {
                content: '';
                width: 11px;
                height: 11px;
                background: url(../imgs/plus_profi.svg) no-repeat center;
                background-size: 100%;
                display: block;
                position: absolute;
                left: 100%;
                top: 0;
                bottom: 1.5px;
                transform: rotate(10deg) translateX(1px) translateY(-2px);
            }
            .review-user-rating-date {
                font-size: 80%;
                margin-left: 12px;
                color: #525252;
            }
            
    .review-user-message {
        padding-left: 60px;
        font-size: 90%;
        padding-top: 10px;
    }
    .review-user-cost {
        padding-left: 60px;
        margin-top: 12px;
        font-size: 90%;
    }
        .review-user-cost > p:first-child {
            color: #525252;
            margin-bottom: 2px;
            font-size: 90%;
        }
    .review-user-photo {
        margin-left: 60px;
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
    }
        .review-user-photo img {
            width: 100px;
        }
/*     
.reviews.dev .reviews-list {
    height: 825px;
    overflow: hidden;
    position: relative;
}
.reviews.dev .reviews-list.full {
    height: 100%;
}
.reviews.dev .reviews-list-show-more {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(253,253,253);
    padding: 5px 15px;
    border-radius: 10px;
}
*/


/* Блок с контактными данными */
footer {
    padding: 40px;
    margin-top: 80px;
    user-select: none;
}
    footer > div:first-child {
        margin-bottom: 16px;
        font-size: 80%;
        font-weight: bold;
        color: #525252;
    }
    footer > div:last-child {
        font-size: 60%;
        color: #525252;
    }
    
iframe {
    right: 50px !important;
    bottom: 50px !important;
}

/* Анимация для автоматического перемещения элементов влево */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
    }
}